package com.abewy.android.apps.klyph.core.graph; public class Tag extends GraphObject { private String id; private String name; private int offset; private int length; private String type; public Tag() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getOffset() { return offset; } public void setOffset(int offset) { this.offset = offset; } public int getLength() { return length; } public void setLength(int length) { this.length = length; } public String getType() { return type; } public void setType(String type) { this.type = type; } }